* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Section Background */
.inspiration-section {
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
}
/* Card */
.inspiration-card {
    border-radius: 18px;
    transition: all 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

/* Hover Effect */
.inspiration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.inspiration-img-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.inspiration-card:hover .inspiration-img-wrapper {
    transform: scale(1.05);
}

.inspiration-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.inspiration-name {
    font-weight: 900;
    color: #ff3576;
    letter-spacing: 1.5px;
    text-shadow:
        1px 1px 12px #fff0e6,
        0 2px 12px #ff6a00;
    font-size: 2rem;
}

/* Text */
.inspiration-text h4 {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #ff7a2f;
    margin-bottom: 10px;
    font-size: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.inspiration-text p {
    color: #434343;
    font-size: 17px;
    line-height: 1.7;
    word-spacing: 0.2rem;
    text-align: justify;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .inspiration-img-wrapper {
        width: 130px;
        height: 130px;
    }

    .inspiration-text p {
        font-size: 14px;
    }
}

/* FLOATING SHAPES */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 10s infinite linear;
}

.shape1 {
    width: 180px;
    height: 180px;
    background: #dc3545;
    top: 170%;
    left: -80px;
}

.shape2 {
    width: 120px;
    height: 120px;
    background: #f59e0b;
    bottom: -140%;
    right: -60px;
}

.shape3 {
    width: 90px;
    height: 90px;
    background: #b02a37;
    top: 60%;
    left: 20%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
